home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / MPW Oberon 2.1168 / OExamples / ResEqual.r < prev    next >
Encoding:
Text File  |  1993-05-07  |  1.9 KB  |  99 lines  |  [TEXT/MPS ]

  1. /****************************************************************************/
  2. /*                                                                            */
  3. /*                      ResEqual Commando Resources                         */
  4. /*                                                                            */
  5. /*                                                                            */
  6. /*                   Copyright Apple Computer, Inc. 1987                    */
  7. /*                           All rights reserved.                           */
  8. /*                                                                            */
  9. /****************************************************************************/
  10.  
  11. #include "cmdo.r"
  12. #include "SysTypes.r"
  13.  
  14. resource 'cmdo' (355) {
  15.     {
  16.         240,
  17.         "ResEqual compares the resources in two files and reports the differences.",
  18.         {
  19.             NotDependent {}, Files {
  20.                 InputFile,
  21.                 RequiredFile {
  22.                     {40, 40, 60, 190},
  23.                     "Resource File 1",
  24.                     "",
  25.                     "Select the first file to compare.",
  26.                 },
  27.                 Additional {
  28.                     "",
  29.                     FilterTypes,
  30.                     "Only applications, DA’s, and tools",
  31.                     "All files",
  32.                     {
  33.                         appl,
  34.                         tool,
  35.                         da
  36.                     }
  37.                 }
  38.             },
  39.             Or {{1}}, Files {
  40.                 InputFile,
  41.                 RequiredFile {
  42.                     {70, 40, 90, 190},
  43.                     "Resource File 2",
  44.                     "",
  45.                     "Select the second file to compare.",
  46.                 },
  47.                 Additional {
  48.                     "",
  49.                     FilterTypes,
  50.                     "Only applications, DA’s, and tools",
  51.                     "All files",
  52.                     {
  53.                         appl,
  54.                         tool,
  55.                         da
  56.                     }
  57.                 }
  58.             },
  59.             NotDependent {}, TextBox {
  60.                 gray,
  61.                 {30, 35, 95, 195},
  62.                 "Files to Compare"
  63.             },
  64.             NotDependent {}, CheckOption {
  65.                 NotSet,
  66.                 {105, 75, 121, 155},
  67.                 "Progress",
  68.                 "-p",
  69.                 "Write progress information to diagnostic output."
  70.             },
  71.             NotDependent {}, Redirection {
  72.                 StandardOutput,
  73.                 {40, 300}
  74.             },
  75.             NotDependent {}, Redirection {
  76.                 DiagnosticOutput,
  77.                 {80, 300}
  78.             },
  79.             NotDependent {}, TextBox {
  80.                 gray,
  81.                 {30, 295, 121, 420},
  82.                 "Redirection"
  83.             },
  84.             Or {{2}}, DoItButton {
  85.             },
  86.         }
  87.     }
  88. };
  89.  
  90. resource 'vers' (1) {
  91.     0x2,
  92.     0x10,
  93.     release,
  94.     0x0,
  95.     verUs,
  96.     "2.1",
  97.     "2.1, ©Apple Computer, Inc. 1983-1989"
  98. };
  99.